home *** CD-ROM | disk | FTP | other *** search
- #
- # EMX/options.mk --- Part of Makefile for PFE, compiler options for gcc/emx.
- #
- # - the Makefile works with dmake in OS/2
- # (dmake - Copyright (c) 1990,1991 by Dennis Vadura, Version 3.80, PL 0),
- # and the way I configured it (default) dmake uses COMSPEC as command line
- # interpreter which in my case is CMD.EXE.
- # If you use gnu-make and/or a unix-like shell as command line interpreter,
- # be prepared to get errors. One reason is the neccessary quoting of the
- # `"' and `\' in $(PREFIX). I must leave it up to you to get it right.
- #
- # - when you build under DOS, be warned that the command line for the
- # final link step is too long. Replace $(OBJECTS) by *.OBJ.
- #
-
- # Where you store online help files and other stuff.
- PREFIX = C:
- PFELIB = $(PREFIX)\\lib\\pfe
- PFEHLP = $(PFELIB)\\help
-
- SYSTEM = EMX
-
- CC = gcc -Wall
- OPTIM = -m486 -O2 -fomit-frame-pointer -DUSE_REGS -DUNROLL_NEXT
- DEBUG = -g
-
- CL = $(CC)
- CPP = $(CC) -E
- OPTIONS =
- STRIP = -s
- TERM_O = term-emx$o
- SYS_O = unix$o
- LFLAGS =
- LIBS = -lbsd -lvideo -lm
-
-
-